home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / picture / dycubpic.h < prev    next >
Text File  |  1993-09-23  |  700b  |  37 lines

  1. //    Copyright 1993 Ralph Gonzalez
  2.  
  3. /*
  4. *    FILE:        dycubpic.h
  5. *    AUTHOR:        R. Gonzalez
  6. *    CREATED:    November 25, 1991
  7. *
  8. *    Defines sample dynamic pict application class.
  9. */
  10.  
  11. # ifndef    dycubpic_h
  12. # define    dycubpic_h
  13.  
  14. # include    "pict.h"
  15. # include    "camera.h"
  16. # include    "trans.h"
  17. # include    "dynamic.h"
  18.  
  19. /******************************************************************
  20. *   an_ring_pict application
  21. ******************************************************************/
  22. class    Dy_Cube_Pict:public Generic_Pict
  23. {
  24. private:
  25.     Projector        *projector1,
  26.                     *projector2;
  27.     Camera            *camera1,
  28.                     *camera2;
  29.     Dynamic_Segment    *segment;
  30.  
  31. public:
  32.     Dy_Cube_Pict(void);
  33.     void            run(void);
  34.     virtual            ~Dy_Cube_Pict(void);
  35. };
  36.  
  37. # endif